home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBListBox / EditDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.3 KB  |  54 lines

  1. #if !defined(AFX_EDITDLG_H__6A37DBF8_70C4_11D3_87C9_00E0292D1C3C__INCLUDED_)
  2. #define AFX_EDITDLG_H__6A37DBF8_70C4_11D3_87C9_00E0292D1C3C__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // EditDlg.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CEditDlg dialog
  12.  
  13. class CEditDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CEditDlg(CWnd* pParent = NULL);   // standard constructor
  18.     BOOL Create();
  19.     void CloseDialog();
  20.  
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CEditDlg)
  24.     enum { IDD = IDD_ED };
  25.         // NOTE: the ClassWizard will add data members here
  26.     //}}AFX_DATA
  27.  
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CEditDlg)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.  
  39.     CWnd* m_peParent;
  40.     int   m_neID;
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CEditDlg)
  44.     virtual void OnOK();
  45.     virtual void OnCancel();
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_EDITDLG_H__6A37DBF8_70C4_11D3_87C9_00E0292D1C3C__INCLUDED_)
  54.